home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 February / maximum-cd-2012-02.iso / DiscContents / TheWagerSetup1.2.exe / Assets / Scripts / [7].lua < prev    next >
Encoding:
Text File  |  2011-01-25  |  468 b   |  23 lines

  1. -- Script [7]
  2. Starting = 0;
  3. SeaEvent = 0;
  4.  
  5. if CrewCount >= 1 then
  6.  
  7.   CrewID = math.random(0, CrewCount);
  8.   
  9.   CrewName = GetCrewName(CrewID);
  10.  
  11.   KillCrew(CrewID);
  12.   
  13.   Message = "It turns out you can't, as " .. CrewName .. " ably demonstrates by being impaled upon one of the aformentioned shiny but now blood-sodden spears.";
  14.  
  15. else
  16.  
  17.   Message = "It turns out you can't.";
  18.  
  19. end
  20.  
  21. ShowStoryText(Message);
  22.  
  23. AddChoice("Go with the cannibals", "[8]");